home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 17 / AMIGAplus Sonderheft 17 (1999)(ICP)(DE)[!].iso / Rexx / WbMan.mrx < prev    next >
Text File  |  1996-07-12  |  314b  |  23 lines

  1. /*
  2. ** This script shows how to obtain a list
  3. ** of an applications ARexx commands.
  4. */
  5.  
  6. options results
  7. address 'WBMAN'
  8.  
  9.  
  10. /* read the list into a temporary file */
  11.  
  12. 'help t:_tmp'
  13.  
  14.  
  15. /* type the file to stdout */
  16.  
  17. address command "type t:_tmp"
  18.  
  19.  
  20. /* delete the temporary file */
  21.  
  22. address command "delete >nil: t:_tmp"
  23.